home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / ctags.lha / ctags-3.0.3 / sort.h < prev    next >
C/C++ Source or Header  |  1999-02-17  |  1KB  |  33 lines

  1. /*****************************************************************************
  2. *   $Id: sort.h,v 7.1 1998/12/07 01:38:00 darren Exp $
  3. *
  4. *   Copyright (c) 1998, Darren Hiebert
  5. *
  6. *   This source code is released for free distribution under the terms of the
  7. *   GNU General Public License.
  8. *
  9. *   External interface to sort.c
  10. *****************************************************************************/
  11. #ifndef _SORT_H
  12. #define _SORT_H
  13.  
  14. /*============================================================================
  15. =   Include files
  16. ============================================================================*/
  17. #include "general.h"
  18.  
  19. /*============================================================================
  20. =   Function prototypes
  21. ============================================================================*/
  22. extern void catFile __ARGS((const char *const name));
  23.  
  24. #ifdef EXTERNAL_SORT
  25. extern void externalSortTags __ARGS((const boolean toStdout));
  26. #else
  27. extern void internalSortTags __ARGS((const boolean toStdout));
  28. #endif
  29.  
  30. #endif    /* _SORT_H */
  31.  
  32. /* vi:set tabstop=8 shiftwidth=4: */
  33.